const crypto/tls.maxHandshake

5 uses

	crypto/tls (current package)
		common.go#L64: 	maxHandshake       = 65536        // maximum handshake we support (protocol max is 16 MB)
		conn.go#L1090: 	if n > maxHandshake {
		conn.go#L1092: 		return nil, c.in.setErrorLocked(fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake))
		quic.go#L238: 		if n > maxHandshake {
		quic.go#L239: 			q.conn.handshakeErr = fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake)